home *** CD-ROM | disk | FTP | other *** search
/ Merciful 5 / Merciful - Disc 5.iso / software / p / pcqpascalv1.2d.lha / Include / Diskfont / oterrors.i < prev   
Text File  |  1997-05-06  |  1KB  |  21 lines

  1.   {    oterrors.h -- error results from outline libraries }
  2.  
  3. const
  4. { PRELIMINARY }
  5.     OTERR_Failure        =  -1;      { catch-all for error }
  6.     OTERR_Success        =  0 ;      { no error }
  7.     OTERR_BadTag         =  1 ;      { inappropriate tag for function }
  8.     OTERR_UnknownTag     =  2 ;      { unknown tag for function }
  9.     OTERR_BadData        =  3 ;      { catch-all for bad tag data }
  10.     OTERR_NoMemory       =  4 ;      { insufficient memory for operation }
  11.     OTERR_NoFace         =  5 ;      { no typeface currently specified }
  12.     OTERR_BadFace        =  6 ;      { typeface specification problem }
  13.     OTERR_NoGlyph        =  7 ;      { no glyph specified }
  14.     OTERR_BadGlyph       =  8 ;      { bad glyph code or glyph range }
  15.     OTERR_NoShear        =  9 ;      { shear only partially specified }
  16.     OTERR_NoRotate       =  10;      { rotate only partially specified }
  17.     OTERR_TooSmall       =  11;      { typeface metrics yield tiny glyphs }
  18.     OTERR_UnknownGlyph   =  12;      { glyph not known by engine }
  19.  
  20.  
  21.